home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / raytrace / rayshade / graphtal.lzh / Graphtal.Amiga / Successor.h < prev    next >
C/C++ Source or Header  |  1992-11-19  |  1KB  |  51 lines

  1. /*
  2.  * Successor.h - class definition for L-System successors.
  3.  *
  4.  * Copyright (C) 1992, Christoph Streit (streit@iam.unibe.ch)
  5.  *                     University of Berne, Switzerland
  6.  * All rights reserved.
  7.  *
  8.  * This software may be freely copied, modified, and redistributed
  9.  * provided that this copyright notice is preserved on all copies.
  10.  *
  11.  * You may not distribute this software, in whole or in part, as part of
  12.  * any commercial product without the express consent of the authors.
  13.  *
  14.  * There is no warranty or other guarantee of fitness of this software
  15.  * for any purpose.  It is provided solely "as is".
  16.  *
  17.  */
  18.  
  19. #ifndef Successor_H
  20. # define Successor_H
  21.  
  22. #include "list.h"
  23. #include "Module.h"
  24. #include "Name.h"
  25.  
  26. //___________________________________________________________ Successor
  27.  
  28. class Successor
  29. {
  30. public:
  31.   Successor(double, ProdModuleList*);
  32.   ~Successor();
  33.  
  34.   double& probability();
  35.   ModuleList* clone();
  36.   friend ostream& operator<<(ostream&, Successor&);
  37.  
  38. private:
  39.   double _probability;
  40.   ProdModuleList* modules;
  41. };
  42.  
  43. typedef Successor* SuccessorPtr;
  44. declareList(SuccessorList, SuccessorPtr);
  45.  
  46. inline double& Successor::probability() {
  47.   return _probability;
  48. }
  49.  
  50. #endif // Successor_H
  51.